home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* Insert.ucx */
- /* */
- /* Copyright ©1998 by Dick Whiting */
- /* */
- /*------------------------------------------------------------------------*/
- /* Used with UrbCedWWW for inserting text into an HTML file. */
- /* See the UrbCedWWW Readme for a more complete description. */
- /**************************************************************************/
- /*
- $VER: 1.0 Copyright ©1998 by Dick Whiting
- */
-
- parse arg val
- val=strip(val)
-
- if left(val,1)='"' & right(val,1)='"' then do
- val=substr(val,2,length(val)-2)
- end
- else do
- if left(val,1)="'" & right(val,1)="'" then do
- val=substr(val,2,length(val)-2)
- end
- end
-
- Address CYGNUSED
- options results
-
- 'STATUS INSERTMODE'
- ison=result
- if ~ison then 'INSERT MODE'
-
- 'CEDTOFRONT'
-
- 'TEXT' val
-
- exit
-
-